home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / effects / qteffects explode / read me < prev   
Encoding:
Text File  |  2000-09-28  |  1.3 KB  |  31 lines

  1. README - QTEffects
  2.  
  3. by Scott Kuechle
  4. <http://developer.apple.com/contact/feedback.html>
  5. Version 1.0
  6. 9/27/1999
  7.  
  8.  
  9. This sample demonstrates how to create a QuickTime movie with a video effect as a transition
  10. from one picture to another. This project differs from the QTShowEffect sample code it is based 
  11. on in that it allows the user to create the effect "by hand" e.g. without the aid of the standard 
  12. QuickTime effects parameter dialog box. Instead, the program itself builds the correct effects 
  13. parameter description atoms.
  14.  
  15. Here's a quick rundown of how the program works:
  16.  
  17. • First, a QuickTime movie with two video tracks is created - these two tracks will be used as 
  18. sources for a explode video effect
  19.  
  20. • The effect description and sample description structures for the explode effect are created
  21.        
  22. • An effects track and media are created and added to our movie for the explode effect
  23.  
  24. • The input map for the effect is created, and references for the two video tracks are added to 
  25. this input map
  26.         
  27. To build the effects movie, simply build and launch the application. At the prompt, specify a location for the movie. The resulting movie, when played with any QuickTime capable player (such as QuickTime Player), will show the source track "B" growing from a single point and expanding out until it entirely covers source track "A".
  28.  
  29.  
  30.  
  31. Enjoy